
.home-services{
    width:100%;
    margin-top: 2rem;
    /* margin-bottom: 2rem; */
}

.services-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 25rem 25rem;
    gap: 1rem;
    margin-left: .5rem;
    margin-right: .5rem;
}

.service-container{
  width: 100%;
  height: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-container:hover {
  transform: scale(0.9);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); 
}
.service-image-container{
  width: 100%;
  height:85%;
  overflow: hidden;
}
.service-image-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.service-container h6{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 3rem;
    margin: 0px;
}

@media all and (max-width:800px){
    .services-container{
        display: block;
}
.service-container h6{
padding: 2rem;}
.service-container{
  margin-bottom: 2rem;
}


} 